home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / mail / xsig11.lha / JOWError.def < prev    next >
Text File  |  1994-05-12  |  920b  |  33 lines

  1. DEFINITION MODULE JOWError;
  2.  
  3.  
  4.  
  5. IMPORT DosD;
  6.  
  7.  
  8.  
  9. (*---------------------------------------------------------------------------
  10.   SetErrFile: Set the error output file.
  11.   ---------------------------------------------------------------------------*)
  12. PROCEDURE SetErrFile(file: DosD.FileHandlePtr);
  13.  
  14.  
  15.  
  16. (*---------------------------------------------------------------------------
  17.   SetStdErr: Set the error output file to StdErr()
  18.   ---------------------------------------------------------------------------*)
  19. PROCEDURE SetStdErr();
  20.  
  21.  
  22.  
  23. (*---------------------------------------------------------------------------
  24.   Error: Display error messages, terminate program if necessary.
  25.          Redirect errors to a file if requested.
  26.   ---------------------------------------------------------------------------*)
  27. (*$ CopyDyn:=FALSE *)
  28. PROCEDURE Error(x1,x2,x3: ARRAY OF CHAR; quiet: BOOLEAN; fatal: BOOLEAN);
  29.  
  30.  
  31.  
  32. END JOWError.def
  33.